home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Hacks / Hacks ’89 / ErrApp / errapp.r < prev    next >
Encoding:
Text File  |  1989-06-15  |  942 b   |  33 lines  |  [TEXT/MPS ]

  1. /*
  2.  * hi mom!
  3.  */
  4.  
  5. #include "Types.r"
  6.  
  7.  
  8. include "miscerrapp.rsrc";
  9.  
  10. /* here is the quintessential MultiFinder friendliness device, the SIZE resource */
  11.  
  12. resource 'SIZE' (-1) {
  13.     dontSaveScreen,
  14.     acceptSuspendResumeEvents,
  15.     enableOptionSwitch,
  16.     canBackground,                /* we can background; we don't currently, but our sleep value */
  17.                                 /* guarantees we don't hog the Mac while we are in the background */
  18.     multiFinderAware,            /* this says we do our own activate/deactivate; don't fake us out */
  19.     backgroundAndForeground,    /* this is definitely not a background-only application! */
  20.     dontGetFrontClicks,            /* change this is if you want "do first click" behavior like the Finder */
  21.     ignoreChildDiedEvents,        /* essentially, I'm not a debugger (sub-launching) */
  22.     not32BitCompatible,            /* this app should not be run in 32-bit address space */
  23.     reserved,
  24.     reserved,
  25.     reserved,
  26.     reserved,
  27.     reserved,
  28.     reserved,
  29.     reserved,
  30.     100 * 1024,
  31.     100 * 1024    
  32. };
  33.